home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / CodeWarrior Lite / Metrowerks C⁄C++ Lite / Headers / Project Stationery Support / <replace me ANSI>.cp < prev    next >
Encoding:
Text File  |  1995-04-20  |  722 b   |  17 lines  |  [TEXT/MPCC]

  1. #include <iostream>
  2.  
  3. void main (void)
  4. {
  5.  
  6.     cout << "Hello World, this is CodeWarrior!" << endl;
  7.     
  8.     cout << "This project uses the SIOUX console library: choose ‘Quit’ from the file menu to quit.\n\n";
  9.     
  10.     cout << "For more information on the ANSI Std C++ library, see the “C++ Library Reference” ";
  11.     cout << "(a QuickView online database).  \n\n";
  12.     cout << "For ANSI C++, you must include additional libraries: an ANSI C library, SIOUX for console support, ";
  13.     cout << "the MacOS/Interface library, a CPlusPlus glue library and a Math Library.\n\n";
  14.     
  15.     cout << "For more information on these libraries, and help locating the right ANSI libraries ";
  16.     cout << "for your preferences, see the “CodeWarrior User's Guide”.\n\n";
  17. }